home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / iso8859_4.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  89 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from '8859-4.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     161: 260,
  39.     162: 312,
  40.     163: 342,
  41.     165: 296,
  42.     166: 315,
  43.     169: 352,
  44.     170: 274,
  45.     171: 290,
  46.     172: 358,
  47.     174: 381,
  48.     177: 261,
  49.     178: 731,
  50.     179: 343,
  51.     181: 297,
  52.     182: 316,
  53.     183: 711,
  54.     185: 353,
  55.     186: 275,
  56.     187: 291,
  57.     188: 359,
  58.     189: 330,
  59.     190: 382,
  60.     191: 331,
  61.     192: 256,
  62.     199: 302,
  63.     200: 268,
  64.     202: 280,
  65.     204: 278,
  66.     207: 298,
  67.     208: 272,
  68.     209: 325,
  69.     210: 332,
  70.     211: 310,
  71.     217: 370,
  72.     221: 360,
  73.     222: 362,
  74.     224: 257,
  75.     231: 303,
  76.     232: 269,
  77.     234: 281,
  78.     236: 279,
  79.     239: 299,
  80.     240: 273,
  81.     241: 326,
  82.     242: 333,
  83.     243: 311,
  84.     249: 371,
  85.     253: 361,
  86.     254: 363,
  87.     255: 729 })
  88. encoding_map = codecs.make_encoding_map(decoding_map)
  89.